(sgml-tag): Fix bug: Call sgml-transformation-function.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Thu, 17 May 2007 13:31:51 +0000 (13:31 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Thu, 17 May 2007 13:31:51 +0000 (13:31 +0000)
lisp/textmodes/sgml-mode.el

index 51ff5e48a340d91d72bb272691f23be9f6531fda..e8beed036c2991fdbe3cd778f4e2a10f94ee195e 100644 (file)
@@ -619,10 +619,10 @@ This only works for Latin-1 input."
   "Prompt for a tag and insert it, optionally with attributes.
 Completion and configuration are done according to `sgml-tag-alist'.
 If you like tags and attributes in uppercase do \\[set-variable]
-`skeleton-transformation-function' RET `upcase' RET, or put this
+`sgml-transformation-function' RET `upcase' RET, or put this
 in your `.emacs':
   (setq sgml-transformation-function 'upcase)"
-  (funcall (or skeleton-transformation-function 'identity)
+  (funcall (or sgml-transformation-function 'identity)
            (setq sgml-tag-last
                 (completing-read
                  (if (> (length sgml-tag-last) 0)